

section {
    margin-top: 50px;
    margin-bottom: 50px;
}

section.contact-us #contact-form {
    width: 35%;
    background-color: #fff;
    padding: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

.section-heading h4 {
    font-size: 28px;
    font-weight: 900;
    color: #dc8cdb;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.inputField{
    padding-bottom: 5%;
}

input, textarea {
    width: 350px;
    background-color: #f4f7fb;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    outline-color: #9e9e9e;
}

input {
    height: 40px;
    padding: 0px 15px;
}

textarea {
    min-height: 140px;
    max-height: 180px;
    padding: 15px;
    resize: none;
}

.contact-us span {
    font-size: 12px;
    margin-bottom: 20px;
}

.valid_info_name, .valid_info_email, .valid_info_message {
    display: inline-block;
    font-size: 13px;
    margin: 5px 2px;
}

.valid {
    border: 2px solid green;
    outline-color: green;
}

.invalid {
    border: 2px solid red;
    outline-color: red;
}

.btn {
    display: inline-flex;
    width: 100%;
    justify-content: flex-end;
}

#form-submit {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%);
    padding: 12px 20px;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}
section.contact-us #contact-form {
    width: 70%;
}
